806c98e66731f5a22c0166e3f51438fc0ec159b5,platform/vcs-impl/src/com/intellij/openapi/vcs/changes/ui/ChangesBrowser.java,ChangesBrowser,createToolbar,#,324

Before Change


      treeActionsGroup.add(action);
    }

    return ActionManager.getInstance().createActionToolbar(ActionPlaces.UNKNOWN, toolbarGroups, true).getComponent();
  }

  protected void buildToolBar(final DefaultActionGroup toolBarGroup) {

After Change


      treeActionsGroup.add(action);
    }

    ActionToolbar toolbar = ActionManager.getInstance().createActionToolbar(ActionPlaces.UNKNOWN, toolbarGroups, true);
    toolbar.setTargetComponent(this);
    return toolbar.getComponent();
  }

  protected void buildToolBar(final DefaultActionGroup toolBarGroup) {